home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d14 / bibwin1.arc / GO.BAT < prev    next >
DOS Batch File  |  1991-07-29  |  743b  |  23 lines

  1. @echo off
  2. echo This batch file creates a directory named c:\bw and copies 
  3. echo files to it.  To stop batch file, hold the control (Ctrl) key
  4. echo and press the Break key.
  5. pause Press a key to continue.
  6. md c:\bw >nul
  7. copy bw.exe c:\bw > nul
  8. copy list.com c:\bw > nul
  9. copy qlist c:\bw > nul
  10. copy readme c:\bw > nul
  11. copy readme.bat c:\bw > nul
  12. copy register.frm c:\bw > nul
  13. copy twb c:\bw > nul
  14. copy verses.niv c:\bw > nul
  15. rem if not exist c:\windows\win.ini goto nowin
  16. rem copy vbrun100.dll c:\windows > nul
  17. echo For information on running the program, see the readme file.
  18. pause
  19. goto done
  20. :nowin
  21. echo I can't find your windows subdirectory.
  22. echo You will have to copy the file named vbrun100.dll to that directory.
  23. :done